Back Press Handling
Back press handling on payments page
Note : Only Applicable for Single Activity Applications
Available from SDK version 9.0.2-RELEASE
Override the onBackPressed()
method in your payment screen and include the following call :
@Override
public void onBackPressed() {
super.onBackPressed();
// Redirect to Cart Review Screen
SampleApplication.getNucleiSDK().openLastNucleiScreen();
}